home *** CD-ROM | disk | FTP | other *** search
/ Power Hacker 2003 / Power_Hacker_2003.iso / Exploit and vulnerability / w00w00 / sectools / dsniff / hex.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-05-16  |  323 b   |  20 lines

  1. /*
  2.   hex.h
  3.  
  4.   Hexadecimal conversion routines.
  5.   
  6.   Copyright (c) 2000 Dug Song <dugsong@monkey.org>
  7.  
  8.   $Id: hex.h,v 1.1 2000/05/16 17:31:15 dugsong Exp $
  9. */
  10.  
  11. #ifndef HEX_H
  12. #define HEX_H
  13.  
  14. int    hex_decode(char *src, u_char *buf, int len);
  15.  
  16. void    hex_print(const u_char *buf, int len, int offset);
  17.            
  18. #endif /* HEX_H */
  19.  
  20.